home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
ixemulsrc.lha
/
ixemul-41.4
/
stdlib
/
abort.c
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
197b
|
13 lines
#define KERNEL
#include "ixemul.h"
void
abort (void)
{
syscall (SYS_kill, 0, SIGABRT);
/* if this should be caught, do exit directly... */
ix_panic ("ABORT!");
syscall (SYS_exit, 20);
}